home *** CD-ROM | disk | FTP | other *** search
/ GKGM 014 / GKGM014.iso / trash / WHAT'S HER BRA SIZE.swf / scripts / frame_797 / DoAction.as
Text File  |  2007-01-08  |  810b  |  51 lines

  1. stop();
  2. if(Number(correct) == 100)
  3. {
  4.    tellTarget("/award")
  5.    {
  6.       gotoAndStop(1);
  7.    }
  8. }
  9. else if(Number(correct) < 100 and 89 < Number(correct))
  10. {
  11.    tellTarget("/award")
  12.    {
  13.       gotoAndStop(1);
  14.    }
  15. }
  16. else if(Number(correct) < 89 and 69 < Number(correct))
  17. {
  18.    tellTarget("/award")
  19.    {
  20.       gotoAndStop(2);
  21.    }
  22. }
  23. else if(Number(correct) < 69 and 49 < Number(correct))
  24. {
  25.    tellTarget("/award")
  26.    {
  27.       gotoAndStop(3);
  28.    }
  29. }
  30. else if(Number(correct) < 49 and 29 < Number(correct))
  31. {
  32.    tellTarget("/award")
  33.    {
  34.       gotoAndStop(4);
  35.    }
  36. }
  37. else if(Number(correct) < 29 and 1 < Number(correct))
  38. {
  39.    tellTarget("/award")
  40.    {
  41.       gotoAndStop(5);
  42.    }
  43. }
  44. else if(Number(correct) == 0)
  45. {
  46.    tellTarget("/award")
  47.    {
  48.       gotoAndStop(5);
  49.    }
  50. }
  51.